In the realm of data-driven enterprise decision-making, Power BI has emerged as an indispensable ally, enabling organizations to distill complex data into actionable insights. At the core of Power BI's analytical prowess lies Data Analysis Expressions, more commonly known as DAX. This sophisticated language empowers professionals to not only navigate through vast datasets but also to perform intricate calculations and transformations with precision.
In this comprehensive blog, we embark on a journey through the world of DAX functions within Power BI. Our primary aim is to equip you with a profound understanding of these essential functions by providing clear syntax explanations and practical examples.
DAX Syntax and Structure
Understanding the syntax and structure of Data Analysis Expressions (DAX) is fundamental to harnessing its power within Power BI. DAX formulas have a well-defined structure that combines functions, operators, and values to perform data manipulations.
At its core, a DAX formula consists of a function, followed by a set of arguments enclosed in parentheses. These arguments can include column or table references, constants, or expressions. Operators, such as arithmetic symbols (+, -, *, /), are used to manipulate values within a formula, and they follow standard mathematical rules. The organization of DAX is logical and consistent, making it accessible even to those new to the language.
To illustrate, let's consider a simple DAX formula. Suppose you have a table of sales data, and you want to calculate the total sales for a specific product category. In DAX, you would use the SUMX function to achieve this. The formula might look like this:
Total Sales = SUMX(Sales, Sales[Amount])
In this example:
'Total Sales' is the name of the calculated measure we're creating.
'SUMX' is the DAX function used to sum the values.
'Sales' is the table containing the data.
'Sales[Amount]' is the column from which we want to sum the values.
This straightforward formula exemplifies the core components of DAX syntax: function name, arguments enclosed in parentheses, and the use of table and column references.
Common Power BI Dax Functions
In the realm of Power BI, common DAX functions serve as the building blocks for extracting valuable insights from your data. These functions are essential tools for performing various calculations and transformations. Let's delve into a selection of these indispensable DAX functions, starting with the following:
1. SUM
Syntax: SUM(<column>)
Explanation: The SUM function, as its name suggests, calculates the sum of the values in a specified column. It is especially useful for aggregating numerical data, such as sales figures or quantities.
Example: Suppose you have a 'Sales' table with a column named 'Revenue'. To find the total revenue, you would use the SUM function like this:
Total Revenue = SUM(Sales[Revenue])
2. AVERAGE
Syntax: AVERAGE(<column>)
Explanation: AVERAGE computes the average value of the numbers in a given column. This function is valuable for determining the average sales price, rating, or any other numeric metric.
Example: If you want to calculate the average rating in a 'Product Reviews' table with a 'Rating' column, you can employ the AVERAGE function:
Average Rating = AVERAGE('Product Reviews'[Rating])
3. COUNT
Syntax: COUNT(<column>)
Explanation: COUNT, as the name implies, counts the number of rows in a specified column that contain data. It is often used to determine the total number of entries or occurrences in a dataset.
Example: To count the number of products in a 'Products' table, you would use the COUNT function like this:
Total Products = COUNT(Products[ProductID])
4. MAX and MIN
Syntax: MAX(<column>) and MIN(<column>)
Explanation: MAX and MIN functions identify the maximum and minimum values, respectively, within a specified column. They are valuable for finding the highest and lowest data points in your dataset.
Example: To determine the highest and lowest sales values in a 'Sales' table's 'Amount' column, you can utilize MAX and MIN as follows:
Highest Sales = MAX(Sales[Amount])
Lowest Sales = MIN(Sales[Amount])
5. FILTER
Syntax: FILTER(<table>, <filter_expression>)
Explanation: FILTER allows you to create a new table that includes only the rows that meet specific criteria. It is instrumental for slicing and dicing data based on defined conditions.
Example: Suppose you have a 'Customer' table and want to filter it to include only customers from a specific region (e.g., 'West'). You can use FILTER like this:
West Region Customers = FILTER(Customer, Customer[Region] = "West")
6. CALCULATE
Syntax: CALCULATE(<expression>, <filter1>, <filter2>, ...)
Explanation: CALCULATE is a versatile function that modifies the context in which calculations occur. It enables you to apply filters or conditions to specific calculations.
Example: If you want to calculate the total revenue for a particular product category (e.g., 'Electronics'), factoring in only the sales from the year 2023, you can use CALCULATE like this:
Total Revenue 2023 Electronics = CALCULATE(SUM(Sales[Revenue]), Sales[Year] = 2023, Products[Category] = "Electronics")
7. ALL
Syntax: ALL(<table>)
Explanation: The ALL function removes filters from a table, allowing you to analyze data without the constraints of existing filters. It is helpful for examining data in a broader context.
Example: To calculate the total sales for all products regardless of any current filters, you can use the ALL function in combination with SUM:
Total Sales (All Products) = CALCULATE(SUM(Sales[Amount]), ALL('Products'))
8. RELATED
Syntax: RELATED(<related_table>[, <related_column>])
Explanation: The RELATED function is used to fetch data from related tables. It helps you retrieve values from a related table based on the current row's context in the primary table.
Example: Suppose you have a "Sales" table and a related "Products" table, and you want to fetch the product name associated with each sale. You can use the RELATED function like this:
Product Name = RELATED(Products[ProductName])
9. COUNTROWS
Syntax: COUNTROWS(<table>)
Explanation: COUNTROWS counts the number of rows in a table, which can be useful for various calculations, including determining the number of items in a filtered table or the number of orders for a specific customer.
Example: If you want to find the number of orders for each customer in a "Sales" table, you can use COUNTROWS like this:
Orders per Customer = COUNTROWS(FILTER(Sales, Sales[CustomerID] = EARLIER(Sales[CustomerID])))
What are Time Intelligent DAX Functions in Power BI?
Time is a critical dimension in the world of data analysis, and when working with time-based data, the significance of time intelligence functions becomes evident. These specialized functions are specifically designed to facilitate date-based calculations, making them essential tools for any analyst or organization dealing with time-series data. Time intelligence functions empower users to compare, analyze, and visualize data over different time periods, enabling trend analysis, year-over-year comparisons, and much more.
Let's delve into a few essential time intelligence functions and explore how they can be applied to gain deeper insights from your data:
1. DATESYTD
Syntax: DATESYTD(<dates>, [<year_end_date>], [<filter>])
Explanation: DATESYTD is used to calculate the year-to-date total for a given set of dates. It's particularly handy for tracking cumulative performance over time, such as YTD sales or revenue.
Example: Suppose you want to find the year-to-date sales for each date in a 'Sales' table, where your fiscal year ends on March 31st. You can use DATESYTD like this:
YTD Sales = DATESYTD(Sales[Date], "03/31")
2. TOTALYTD
Syntax: TOTALYTD(<expression>, <dates>, [<year_end_date>], [<filter>])
Explanation: TOTALYTD extends the DATESYTD function by allowing you to calculate the year-to-date total for a measure or expression. It's instrumental in situations where you want to evaluate a dynamic measure over time.
Example: Let's say you have a measure called "Total Revenue" and want to find the year-to-date total revenue, considering the same fiscal year end date of March 31st:
YTD Total Revenue = TOTALYTD([Total Revenue], Sales[Date], "03/31")
3. SAMEPERIODLASTYEAR
Syntax: SAMEPERIODLASTYEAR(<dates>)
Explanation: SAMEPERIODLASTYEAR helps you compare data with the corresponding period from the previous year. This function is crucial for identifying trends, seasonality, or growth year-over-year.
Example: To calculate the sales for the same period in the previous year for each date in a "Sales" table, you can utilize SAMEPERIODLASTYEAR as follows:
Sales Last Year = CALCULATE(SUM(Sales[Amount]), SAMEPERIODLASTYEAR(Sales[Date]))
Whether you're tracking business performance over time, identifying seasonality, or comparing data to past periods, these functions are indispensable tools in your analytical arsenal.
What are Advanced DAX Functions in Power BI?
While common DAX functions form the foundation of your analytical toolkit, advanced DAX functions take your data analysis capabilities in Power BI to the next level. These functions offer greater flexibility and sophistication, allowing you to tackle complex scenarios and make more informed decisions.
In this section, we'll explore a few advanced DAX functions—SUMX, RANKX, and SWITCH—and delve into their syntax, use cases, and practical examples.
1. SUMX
Syntax: SUMX(<table>, <expression>)
Explanation: SUMX is a versatile function that calculates the sum of a specified expression for each row in a table. It's particularly useful when you need to perform calculations on a row-by-row basis.
Use Case: Imagine you have a ‘Sales’ table and want to calculate the total revenue for each product by multiplying the unit price and quantity. You can achieve this with SUMX:
Total Revenue = SUMX(Sales, Sales[UnitPrice] * Sales[Quantity])
2. RANKX
Syntax: RANKX(<table>, <expression>[, <value>[, <order>[, <ties>]]])
Explanation: RANKX assigns a rank to each row in a table based on a specified expression. It's handy when you need to determine the ranking of items within a dataset.
Use Case: Suppose you have a ‘Sales’ table and want to rank products based on their sales revenue. You can use RANKX like this:
Product Rank = RANKX(Sales, [Total Revenue], , DESC)
3. SWITCH
Syntax: SWITCH(<expression>, <value1>, <result1>[, <value2>, <result2>, ...[, <else>]])
Explanation: SWITCH is a conditional function that allows you to specify multiple conditions and their corresponding results. It's useful for creating dynamic calculations based on different scenarios.
Use Case: Let's say you want to categorize products based on their sales into ‘Low,’ ‘Medium,’ and ‘High.’ You can achieve this with SWITCH:
Sales Category =
SWITCH(
TRUE(),
[Total Revenue] < 1000, "Low",
[Total Revenue] < 5000, "Medium",
[Total Revenue] >= 5000, "High"
)
In conclusion, mastering Data Analysis Expressions (DAX) functions within Power BI is essential for unleashing the full potential of your data analysis efforts.
Whether you're crafting measures for dynamic dashboards or optimizing calculated columns for enriched datasets, DAX empowers you to transform data into actionable intelligence, making informed decisions that drive success in the ever-evolving world of enterprise analytics.
Phrazor helps you summarize Power BI and Tableau dashboards in language using AI.
Leverage Phrazor to generate crisp insights with reasoning, drive adoption of your dashboards and to get language-based insights for non-technical stakeholders.
Start your 14 day free trial of Phrazor for Power BI today
About Phrazor
Phrazor empowers business users to effortlessly access their data and derive insights in language via no-code querying
You might also find these interesting
Recommended Reads
Phrazor Visual Product Update: October 2023
Our latest Phrazor Visual update brings improved language quality, key takeaways, and actionable insights.
Why Phrazor and ChatGPT are a match made in Heaven
Learn how Phrazor SDK leverages Generative AI to create textual summaries from your data directly with python.
How to Create a Data Model in 6 Simple Steps
Learn the basics of how to create a working data model in 6 simple steps.
Create Tableau Heatmap in simple steps
Heatmap transforms data into a vibrant canvas where trends and relationships emerge as hues and intensities. In this blog we will learn how to create a heatmap on Tableau in easy steps.
Top 7 Tableau tips and tricks for Tableau developers
Supercharge your Tableau reports with our seven expert Tableau tips and tricks! We will share tips on how to optimize performance and create reports for your business stakeholders.
Complete Guide to Master Power Query
What is Power Query? Power Query allows user to transform, load and query your data. Read our complete guide to know more about Power Query.
What is Data Catalog and how to implement it
Data Catalog is an organized inventory of an company's data assets, providing a centralized repository that facilitates data discovery, understanding, and management.
Top 7 Power BI tips and tricks for Power BI developers
Supercharge your Power BI reports with our seven expert Power BI tips and tricks! We will share tips on how to optimize performance and create reports for your business stakeholders.
Generate Smart Narratives on Power BI
Learn the smarter and easier way to generate Narrative Insights for your Power BI dashboard using the Phrazor Plugin for Power BI.
5 Common BI Reporting Mistakes to Avoid
Learn how to avoid the top common BI reporting mistakes and how to leverage your data to the maximum usage.
5 Ways to Improve Your Business Intelligence Reporting Process
Learn how to establish a consistent reporting schedule, work on data visualization, automate data collection, identify reporting requirements, and identify KPIs and metrics for each report.
Automate your talent acquisition report with Phrazor
Discover how to enhance your talent acquisition reporting with BI tools like writing automation and NLG. Learn about Phrazor’s capabilities and its integration with Power BI.
Benefits of Automated Financial Reporting for Enterprises
Learn about the benefits of automated financial reporting and the role of natural language processing (NLP) in its success in this informative blog.
How Phrazor eliminates ChatGPT's data security risks for Enterprises
Learn how Phrazor enhances data security for enterprises by separating sensitive information from ChatGPT's queries. Generate insights with confidence.
Supply Chain Analytics and BI - Why They Matter to Enterprises
Learn how supply chain analytics and business intelligence (BI) can help organizations optimize their operations, reduce costs, and improve customer service.
How Phrazor leverages ChatGPT for Enterprise BI
Discover how Phrazor, an enterprise business intelligence platform, harnesses the power of ChatGPT, a large language model, to generate insightful reports and analyses effortlessly. Learn more about the benefits of using Phrazor's AI-powered capabilities for your business.
The Future of BI Reporting - Trends and Predictions for 2023
Explore the new trends and predictions for the Business intelligence Industry and How AI is disrupting the BI industry and the traditional methods.
Narrative Science has Shut Down. Here's an Interesting, and Similar, Alternative For It
If you're a Narrative Science customer, you may have recently found yourself in a tough spot. In December 2022, Narrative Science was acquired by Salesforce for Tableau, and their services have now been stopped. So where does that leave you?
Why it Makes Sense for Small Enterprises to Opt for Self-Service BI Early
If we are to learn from the best, it’s evident that data is the fuel to propel your growing organization to greater heights. Google used what is termed ‘people analytics’ to develop training programs designed to cultivate core competencies and behavior similar to what it found in its high-performing managers. Starbucks...
Improving Dashboard Functionality Through Design
A look at the multiple design and customization options Phrazor provides to dashboard creators, to help drive engagement, adoption, and more.
Conducting Advanced Conversational Queries on a BI Tool Effortlessly
Natural Language Querying, or NLQ, is one of the primary methods through which a business user can synergize his vast experience and answers from the company’s data to arrive at the best decisions, without wasting time on either learning or executing anything new.
How Pharma can Optimize Sales Performance Using Business Analytics
The Pharma play is smartening up with automated insights to drive effectiveness in Sales and Marketing efforts.
Leveraging Sales Analytics to Gain Competitive Advantage
Learn how Analytics is shining the light on your sales data to stay ahead of the game.
Impact of Good Insights in Business
Why do managers not use data or insights? Can insights be bad? What is a good insight? Read on for answers.
How Marketing Analytics Optimizes Marketing Efforts
Know for sure if your marketing efforts are hitting bullseye or missing the mark.
How HR Analytics can find the Right Talent and drive Business Productivity
Gain complete visibility of the human resource lifecycle to drive business value.
Business Intelligence vs Data Analytics vs Business Analytics
What is the best fit for your business needs? Let’s find out.
Applications of NLQ in Marketing
NLQ holds the potential to completely revolutionize the way the marketing department works, helping them improve lead generation, measure campaign performance, sift through web analytics, and create effective content.
Does Your BI Tool Have These 4 Must-Have Features?
Although BI tools are being widely indoctrinated into a company’s tech arsenal, its usage and adoption still leaves a question mark on the validity of the BI investment made. Some of the common reasons why Business Intelligence tools are not being adopted company-wide are:
Taking Collaboration To The Next Level With Modified Reports
Phrazor provides a simple solution: create an additional, ‘modified’ report that holds all your comments and edits, without altering the original report whatsoever.
How To Create A Dashboard By Just Chatting - In 4 Steps
Due to the cumbersome process of communicating with tech teams, business users have to wait for weeks or days to get even ad-hoc queries answered. The dependency on data analysts is just far too great. Additionally, most dashboards in use today are of a static nature..
Why Narrative-Based Drill-Down is Superior to Normal Drill-Down
Narrative-based drill-down helps achieve the last-mile in the analytics journey, where the insights derived are able to influence decision-makers into action. Let’s understand how narrative-based drill-down works through a real example...
Why Phrazor’s Conversational Analytics Chatbot is a Cut above other Chatbots
The querying capabilities of Ask Phrazor when compared to the other solutions available in the market, those from Tableau and Power BI, for instance, leave clear daylight between Ask Phrazor and the others. Here are 5 features that showcase how Ask Phrazor is a cut above the rest:
Don’t Ask Your IT Team, Ask Your Data - Dashboard Conversation Interface for Business Users
Conversational analytics on dashboards for business users means they can conduct queries and ad-hoc queries on dashboards in real-time, without the need to revert to tech-based teams and wait for days or weeks for reverts.
Self-Service BI - The Way Forward For Both Analysts and Business Users
The most important question that business users should be asking when making important decisions is this: does my dashboard enable me to take decisions independently?
5 Top Management Reporting Expectations And How To Meet Them
Reports created for the top management do not fulfill their purpose of being useful in strategic decision-making. So what are the top management reporting expectations, and how do you meet them? Read on:
How Phrazor Helps Improve Sales for the Pharmaceutical Industry
Each report is embedded with language-based insights that make data easy to interpret. These auto-generated insights not only explain the data visible on the dashboard but also mine the underlying data pool to surface hidden insights that would have gone completely unnoticed otherwise.
Here’s why you need to add a Language Extension on Tableau
Even though Tableau Dashboards are loaded with exciting features, and new ones constantly added, organizations cannot justify the cost of acquisition of such high-investment BI Tools due to their inability to contribute to ROI. In other words, business owners are not always able to use dashboards to arrive at all-important decisions.
Why should the Financial Services Industry invest in a Self-Service BI Tool
One would conclude that while there is nothing wrong with traditional BI tools, it is the evolution of data in terms of size and complexity and how organizations use it today that necessitates analytics which is beyond the scope of traditional BI tools.
How a Self-Service BI Tool can help the Financial Services industry in Market Intelligence Reporting
Market intelligence reports are to enhance your business intelligence and decision-making. Self-service BI tools can help financial service providers expand their offerings, discover unexplored markets, become more efficient.
Are your dashboards failing to perform? 10 ways to make your dashboards perform optimally
Dashboards curate comprehensive data analysis and enable users to customize the information they want to be displayed. This article describes the reasons why dashboards seem ineffective and how you can avoid these problems.
Data Storytelling: Communicate Insights from Business Data Better with Stories
Data-driven storytelling makes data and insights more meaningful. This article describes the need for data storytelling, how it impacts businesses and helps in improving the communication of insights.
Why Augmented BI is a must-have for your business?
Learn how Business Intelligence has evolved into self-service augmented analytics that enables users to derive actionable insights from data in just a few clicks, and how enterprises can benefit from it.
How is Natural Language Generation Enhancing Processes in the Media & Entertainment Sector
Natural Language Generation plays a vital role for media and entertainment companies to create the right customer experience. It improves processes, boosts customer engagement, and gain a competitive advantage.
Making Sense of Big Data with Natural Language Generation
Businesses often face challenges in combing and mining the right data and translating it into useful and actionable insights. NLG uses the power of language to automate this process and bridge the gap. Read this article to find out how NLG can be effectively used to analyze big data.
How Natural Language Generation is Transforming the Pharma Industry
Natural Language Generation is transforming the pharma industry by increasing the efficiency of clinical trials, accelerating drug development, improving sales and marketing efforts, and streamlining compliance.
Introducing Phrazor: Everything you Need to Know About This Smart BI Tool
Meet Phrazor, our self-service BI platform that turns complex data into easy-to-understand language narratives.
Taking Financial Analysis and Reporting to the Next Level with Natural Language Generation
NLG in finance simplifies data management by automating time-consuming and repetitive workflows and increasing the speed and quality of analytics and reporting.
Phrazor Automates Commentary on IPL Matches for a Leading Media & Publishing Company
Phrazor collaborates with Hindustan Times and ventures into a new product use case, wherein it can help publishing companies and journalists in automating written content.
Going beyond Business Intelligence with Augmented Analytics
Explore how business intelligence systems have evolved into augmented analytics, allowing businesses to become smarter and more proactive.
How is Reporting different from Business Intelligence?
Discover the nuances of reporting, business intelligence, and their convergence in business intelligence reporting.
The art of Data-Driven Storytelling - What is it and why does it matter
Learn why data-driven storytelling, and not just data analytics is necessary to drive organizational change and improvement.
How Big Data Analytics aids Media & Entertainment
Discover how big data analytics is helping media companies to maximize their entertainment value and enhance their business performance.
Applications of AI in the media & entertainment industry
From the way creators conceptualize media content to the way consumers consume it, AI is seeping every aspect of the media and entertainment industry.
How Natural Language Generation Is Helping Democratize Business Intelligence
Discover the role of natural language generation in democratizing business intelligence and building a fully data-driven enterprise.
It's time to upgrade your BI with natural language generation
Learn how natural language generation can help organizations extract the maximum value from their business intelligence tools.
How AI can add value to Human Resource Management
Explore the different ways enterprises can use artificially intelligent automation for HR functions.
How AI is Transforming HR Management
See how AI-enabled HR automation is helping enterprises to enhance the end-to-end employee lifecycle.
4 Ways Big Data Analytics is Revolutionizing the Healthcare Industry
Learn how the use of big data is impacting the different aspects of healthcare, from diagnosis and drug discovery to treatment and post-treatment care.
The Role of NLG-based Reporting Automation in the Pharma Industry
Explore the leading present-day use cases of natural language generation-driven reporting automation in the pharmaceutical industry.
Develop a data-literate enterprise with NLG
Learn how Natural Language Generation (NLG) technology can aid in achieving data literacy across your enterprise to enable data-driven decision making.
Data literacy - the skill growing enterprises must watch out for!
Discover why enterprises must understand data literacy and its importance to be prepared for the data-driven future.
Giving Financial Reports a Facelift with Reporting Automation
Discover how financial institutions are leveraging artificial intelligence and machine learning-enabled natural language generation tools to automate their reporting processes.
Automation in Banking and Financial Services: Streamlining the Reporting Process
Explore how the Banking and Financial Services industry is making the most of automated reporting.
Personalize your Portfolio Analysis Reports for unique Customer Experience
Learn how to capitalize on creating a unique customer experience for your investors with personalized portfolio analysis reports & natural language generation.
Simplifying Portfolio Analysis Reports using Automation
Here’s how reporting automation is changing the face of portfolio analysis reporting for better customer experience and understandability.
Predictive Analytics: What is it and why it matters!
Here's how organizations are making the most of predictive analytics to discover new opportunities & solve difficult business problems.
Business Intelligence, the modern way!
Read more to find out the modern approach to Business Intelligence and Reporting
How AI is transforming Business Intelligence into Actionable Intelligence
Check out how advanced AI technology like Natural language generation is transforming BI Dashboards with intelligent narratives.
Data summarization – the way ahead for businesses
Here's how proper summarization and analysis of data can help increase business value and ROI.
NLG modernizing businesses!
Here's how leading businesses are approaching reporting and analytics using advanced artificial intelligence like Natural Language Generation (NLG).
Demystifying Big Data Analytics
Read more to find out how Big Data Analytics can help businesses recalculate risk portfolios, help detect fraudulent behavior, and determine the root causes of failures and defects in near real-time.
Business Intelligence Decoded
Business intelligence is a data-driven process for analyzing and understanding your business so you can make better decisions based on real-time insights. Here's how it can benefit your teams and organization.
What are Intelligent Narratives and why every business needs them?
Here's how intelligent narratives supplement the graphical elements on dashboards and add more value to the information communicated by giving a quick account of the data, deriving key insights, and aid faster, better decision making.
AI revamping the educational space
Read how AI and machine learning are paving their way in the educational space by overcoming the traditional challenges of the industry.
vPhrase emerges as the winner at the Temenos Innovation Jam in Hong Kong
Here's how Phrazor demonstrated its capabilities of auto-generating a full-fledged report in just 5 seconds and won the Temenos Innovation Jam in Hong Kong.
Can software write content for you?
Let's understand how and why website and blog content can be auto-generated using Phrazor
The media and entertainment industry goes gaga over AI
Read along to understand how AI is influencing the media and entertainment industry.
AI to revolutionize the banking sector
Here’s how AI is coming to become the most defining technology for the banking industry.
Business problems that AI can solve
Unleash the potential of AI to overcome business challenges and climb higher up the ladder of success.
NLU vs NLP vs NLG: The Understanding, Processing and Generation of Natural Language Explained
Read along to understand the difference between natural language processing, natural language understanding and natural language generation.
AI is all set to empower medicos
AI is a boon to the healthcare industry. Let us understand how it can help medical professionals do their jobs better.
Top use cases in automated report writing
The power of natural language generation in robotizing report writing should be realized in different fields. Here’s why and how.
Striking a chord with your customers, the AI way
Here's how AI-backed solutions can help finance companies improve their customer service with language-based portfolio statements.
Will automation lead to mass unemployment?
Will this wave of Artificial Intelligence and Robotics cause mass unemployment or will it in fact create more jobs? Let's find out...
Leveraging Artificial Intelligence to augment Big Data Analysis
Check out how the painstaking tasks of analyzing massive volumes of data and generating reports can be automated for a boost in productivity and revenue.
5 technological breakthroughs that will benefit your business right away
Do more with less with these 5 tech breakthroughs which you can implement in your business right away.
When indecipherable numerical tables turned into personalized investment stories
Natural Language Generation systems help you convert complex portfolio statments in easy to understand investment stories. Read the article to check an example and also how it's done.
A Quick Guide to Natural Language Generation (NLG)
Natural Language Generation (NLG), an advanced artificial intelligence (AI) technology generates language as an output on the basis of structured data as input.
Artificial Intelligence Decoded
Artificial intelligence (AI) is a field of computer science focused at the development of computers capable of doing things that are normally done by people, things that would generally be considered done by people behaving intelligently.
What is Big Data and how to make sense of it?
Big Data can be described as data which is extremely large for conventional databases to process it. The parameters to gauge data as big data would be its size, speed and the range.
Would you please explain it in human
Phrazor, an augmented analytics tool uses advanced AI technology and machine learning to pull insights from raw data and present them in simple and succinct summaries, augmented by visuals.